- static subroutine
- статическая подпрограмма
The New English-Russian Dictionary of Radio-electronics. F.V Lisovsky . 2005.
The New English-Russian Dictionary of Radio-electronics. F.V Lisovsky . 2005.
Static memory allocation — refers to the process of allocating memory at compile time before the associated program is executed, unlike dynamic memory allocation or automatic memory allocation where memory is allocated as required at run time. An application of this… … Wikipedia
Static variable — In computer programming, static variables data value persists for the life of the running process and typically have a broader scope than other variables. Their values may be set at run time or may change subtly during program execution. The… … Wikipedia
Subroutine — In computer science, a subroutine (function, method, procedure, or subprogram) is a portion of code within a larger program, which performs a specific task and can be relatively independent of the remaining code. The syntax of many programming… … Wikipedia
Reentrant (subroutine) — A computer program or routine is described as reentrant if it can be safely executed concurrently; that is, the routine can be re entered while it is already running. To be reentrant, a function: * Must hold no static (global) non constant data.… … Wikipedia
staticroutine — static routine n. A subroutine with the addresses of the operands being the only parameters. * * * … Universalium
Call stack — In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, control stack, run time stack, or machine stack, and… … Wikipedia
Control table — This simple control table directs program flow according to the value of the single input variable. Each table entry holds a possible input value to be tested for equality (implied) and a relevant subroutine to perform in the action column. The… … Wikipedia
Algorithmic efficiency — In computer science, efficiency is used to describe properties of an algorithm relating to how much of various types of resources it consumes. Algorithmic efficiency can be thought of as analogous to engineering productivity for a repeating or… … Wikipedia
Perl 6 — Infobox programming language name = Perl paradigm = Multi paradigm year = 2000 designer = Larry Wall latest release version = pre release latest release date = typing = dynamic, static influenced by = Perl 5, Haskell, Smalltalk influenced =… … Wikipedia
Comparison of programming paradigms — Programming paradigms Agent oriented Automata based Component based Flow based Pipelined Concatenative Concurrent computin … Wikipedia
Local variable — In computer science, a local variable is a variable that is given local scope . Such a variable is accessible only from the function or block in which it is declared. Local variables are contrasted with global variables.In most languages, local… … Wikipedia